Returns True or False to indicate if the current recordset row index is before the beginning of the data.
Syntax
RecordsetBOF(Recordset)
Arguments
| Argument | Description |
|---|---|
| Recordset | Recordset name. Must be opened with OpenRecordset or OpenRecordsetQuery. |
Return value
| Value | Description |
|---|---|
| True | Current row index is before the beginning of the data. |
| False | Current row index is after the beginning of the data. |
Example
rs = OpenRecordset("WysiCorp Bugs (Excel)")
LastRow(rs)
While Not RecordsetBOF(rs)
PrintLn(GetRowValue(rs, "First Name"))
PrevRow(rs)
WEnd